home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games Extra 1996 September / Amiga Games Extra CD-ROM 9-1996.iso / userbox / publicdomain / vim-4.2 / src / proto / term.pro < prev    next >
Text File  |  1996-06-17  |  2KB  |  38 lines

  1. /* term.c */
  2. int set_termname __PARMS((char_u *term));
  3. void getlinecol __PARMS((void));
  4. int add_termcap_entry __PARMS((char_u *name, int force));
  5. void termcapinit __PARMS((char_u *term));
  6. void flushbuf __PARMS((void));
  7. void trash_output_buf __PARMS((void));
  8. void outchar __PARMS((unsigned c));
  9. void outstrn __PARMS((char_u *s));
  10. void outstr __PARMS((register char_u *s));
  11. void windgoto __PARMS((int row, int col));
  12. void setcursor __PARMS((void));
  13. void ttest __PARMS((int pairs));
  14. void add_long_to_buf __PARMS((long_u val, char_u *dst));
  15. int get_long_from_buf __PARMS((char_u *buf, long_u *val));
  16. void outnum __PARMS((register long n));
  17. void check_winsize __PARMS((void));
  18. void set_winsize __PARMS((int width, int height, int mustset));
  19. void settmode __PARMS((int raw));
  20. void starttermcap __PARMS((void));
  21. void stoptermcap __PARMS((void));
  22. void setmouse __PARMS((void));
  23. int mouse_has __PARMS((int c));
  24. void scroll_start __PARMS((void));
  25. void cursor_on __PARMS((void));
  26. void cursor_off __PARMS((void));
  27. void scroll_region_set __PARMS((WIN *wp, int off));
  28. void scroll_region_reset __PARMS((void));
  29. void clear_termcodes __PARMS((void));
  30. void add_termcode __PARMS((char_u *name, char_u *string));
  31. char_u *find_termcode __PARMS((char_u *name));
  32. char_u *get_termcode __PARMS((int i));
  33. void del_termcode __PARMS((char_u *name));
  34. int check_termcode __PARMS((int max_offset));
  35. char_u *replace_termcodes __PARMS((char_u *from, char_u **bufp, int from_part));
  36. void show_termcodes __PARMS((void));
  37. int show_one_termcode __PARMS((char_u *name, char_u *code, int printit));
  38.